Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / StructList<T> Class / InsertArray Method
The zero-based index at which the new elements should be inserted.
The array whose elements should be inserted into the StructList<T>.
The zero-based index of the first element in the array to insert.
The number of elements to insert.

In This Topic
    InsertArray Method
    In This Topic
    Inserts the elements of an array into the StructList<T> at the specified index.
    Syntax
    'Declaration
     
    Public Sub InsertArray( _
       ByVal index As System.Integer, _
       ByVal array() As T, _
       ByVal arrayIndex As System.Integer, _
       ByVal count As System.Integer _
    ) 
    public void InsertArray( 
       System.int index,
       T[] array,
       System.int arrayIndex,
       System.int count
    )

    Parameters

    index
    The zero-based index at which the new elements should be inserted.
    array
    The array whose elements should be inserted into the StructList<T>.
    arrayIndex
    The zero-based index of the first element in the array to insert.
    count
    The number of elements to insert.
    See Also